条件编译

conditional-compilation.md


commit ccb1d87d6faa9ff528d22b96595a0e2cbb16c0f2

Rust 有一个特殊的属性,#[cfg],它允许你基于一个传递给编译器的标记编译代码。它有两种形式:

  1. #[cfg(foo)]
  2. # fn foo() {}
  3. #[cfg(bar = "baz")]
  4. # fn bar() {}

它还有一些帮助选项:

  1. #[cfg(any(unix, windows))]
  2. # fn foo() {}
  3. #[cfg(all(unix, target_pointer_width = "32"))]
  4. # fn bar() {}
  5. #[cfg(not(foo))]
  6. # fn not_foo() {}

这些选项可以任意嵌套:

  1. #[cfg(any(not(unix), all(target_os="macos", target_arch = "powerpc")))]
  2. # fn foo() {}

至于如何启用和禁用这些开关,如果你使用 Cargo 的话,它们可以在你Cargo.toml中的[features]部分设置:

  1. [features]
  2. # no features by default
  3. default = []
  4. # Add feature "foo" here, then you can use it.
  5. # Our "foo" feature depends on nothing else.
  6. foo = []

当你这么做的时候,Cargo传递给rustc一个标记:

  1. --cfg feature="${feature_name}"

这些cfg标记集合会决定哪些功能被启用,并且因此,哪些代码会被编译。让我们看看这些代码:

  1. #[cfg(feature = "foo")]
  2. mod foo {
  3. }

如果你用cargo build --features "foo"编译,他会向rustc传递--cfg feature="foo"标记,并且输出中将会包含mod foo。如果我们使用常规的cargo build编译,则不会传递额外的标记,因此,(输出)不会存在foo模块。

cfg_attr

你也可以通过一个基于cfg变量的cfg_attr来设置另一个属性:

  1. #[cfg_attr(a, b)]
  2. # fn foo() {}

如果a通过cfg属性设置了的话这与#[b]相同,否则不起作用。

cfg!

cfg!语法扩展也让你可以在你的代码中使用这类标记:

  1. if cfg!(target_os = "macos") || cfg!(target_os = "ios") {
  2. println!("Think Different!");
  3. }

这会在编译时被替换为一个truefalse,依配置设定而定。